VPRINTF

Section: C Library Functions (3)
Updated: 8/3/89
Index Return to Main Contents
 

NAME

vprintf, vfprintf, vsprintf, vsnprintf - varargs printf routines  

SYNOPSIS

#include <varargs.h>

char *vprintf(fmt, args);

char *fmt;
va_list args; char *vfprintf(f, fmt, args);
FILE *f;
char *fmt;
va_list args; char *vsprintf(buf, fmt, args);
char *buf, *fmt;
va_list args; int vsnprintf(buf, count, fmt, args);
char *buf; int count; char *fmt;
va_list args;
 

DESCRIPTION

Vprintf, vfprintf, vsprintf and vsnprintf are varargs versions of the stdio formatted output subroutines which may be used by other subroutines that have varargs arguments and wish to use formatted output.  

SEE ALSO

printf(3), varargs(3)


 

Index

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 22:38:23 GMT, September 25, 2024